Function Reference

_GUICtrlStatusBarGetTextLength

Retrieves the length, in characters, of the text from the specified part of a status window.

#Include <GuiStatusBar.au3>
_GUICtrlStatusBarGetTextLength ($h_StatusBar, $i_Panel)

 

Parameters

$h_StatusBar The Control Id (will be converted to hWnd)
$i_Panel Nubmer of the panel to retrieve length from (zero based)

 

Return Value

Text Length

 

Remarks

None.

 

Related

_GUICtrlStatusBarCreate, _GUICtrlStatusBarSetText

 

Example


opt("MustDeclareVars", 1)

#include <GUIConstants.au3>
#Include <GuiStatusBar.au3>

Local $gui, $StatusBar1, $msg, $lbl_Info
Local $a_PartsRightEdge[3] = [100, 350, -1]
Local $a_PartsText[3] = ["New Text", "More Text", "Even More Text"]

$gui = GUICreate("Status Bar Get Text Length", 500, -1, -1, -1, $WS_SIZEBOX)
$StatusBar1 = _GUICtrlStatusBarCreate ($gui, $a_PartsRightEdge, $a_PartsText)
$lbl_Info = GUICtrlCreateLabel("Text Length of 3rd Part: " & _GUICtrlStatusBarGetTextLength ($StatusBar1, 2), 10, 10, 150, 20)

GUISetState(@SW_SHOW)


While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $GUI_EVENT_RESIZED
            _GUICtrlStatusBarResize ($StatusBar1)
        Case $msg = $GUI_EVENT_CLOSE
            ExitLoop
        Case Else
            ;;;;;
    EndSelect
   
WEnd